home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20041116-20060924 / 000113_fdc@columbia.edu_Thu Jun 9 17:48:27 2005.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Path: newsmaster.cc.columbia.edu!not-for-mail
  2. From: Frank da Cruz <fdc@columbia.edu>
  3. Newsgroups: comp.protocols.kermit.misc
  4. Subject: Re: Kermit server requirements
  5. Date: 9 Jun 2005 21:48:19 GMT
  6. Organization: Columbia University
  7. Lines: 56
  8. Message-ID: <slrndahe93.ckg.fdc@sesame.cc.columbia.edu>
  9. References: <MSble.7935$M36.2868@newsread1.news.atl.earthlink.net> <slrnd9cf2u.ato.fdc@sesame.cc.columbia.edu> <d8a8gj$81a$1@news.tamu.edu>
  10. Reply-To: fdc@columbia.edu
  11. NNTP-Posting-Host: sesame.cc.columbia.edu
  12. X-Trace: newsmaster.cc.columbia.edu 1118353699 27901 128.59.59.56 (9 Jun 2005 21:48:19 GMT)
  13. X-Complaints-To: postmaster@columbia.edu
  14. NNTP-Posting-Date: 9 Jun 2005 21:48:19 GMT
  15. User-Agent: slrn/0.9.8.0 (SunOS)
  16. Xref: newsmaster.cc.columbia.edu comp.protocols.kermit.misc:15353
  17.  
  18. On 2005-06-09, Kevin L <lamonte@gerg.tamu.edu> wrote:
  19. : ...
  20. : I've got the machines set up and am running initial tests now.  The 
  21. : device computer has k95.exe running via SRVANY, the control computer is 
  22. : running Linux C-Kermit.  All looks well, I'm getting 10,000cps - 
  23. : 20,000cps on file transfers (binary mode, flow-control none, 
  24. : carrier-watch off).  However, a few things are strange:
  25. :
  26. : 1.  I have to allow k95.exe access to the desktop so I can click through 
  27. : the "try" button on the evaluation splash screen.  We're almost ready 
  28. : with a purchase order (we're another university :) ) to get a full 
  29. : version.  Question is:  will the purchased no-nag version need to get to 
  30. : the desktop too?
  31. :
  32. No.
  33.  
  34. : 2.  The memory usage seems way off.  Under taskmgr, k95.exe consumes 14 
  35. : megabytes of memory + 5 MB for vbox.dll.  Though I know Kermit 95 is a 
  36. : superb terminal emulator, I don't need all that function for this use 
  37. : case.  In general, how can I reduce k95's memory use?  More 
  38. : specifically, can I execute k95.exe in a "bare-bones" mode ala gkermit? 
  39. :   I'm ordering the "non-crypto" version, will that eliminate "vbox.dll"?
  40. :
  41. Vbox is the nag screen.  It was grafted on the K95 by our electronic
  42. sales and delivery provider, e-academy.com.  It's not in the registered
  43. version at all.
  44.  
  45. Various features can be deselected via command-line options, that can
  46. reduce memory consumption by not loading unneeded DLLs, etc, e.g.:
  47.  
  48.  -# <arg>
  49.      Kermit 95 Startup Flags
  50.      Argument:
  51.    2 - do not load optional network dlls
  52.    4 - do not load optional tapi dlls
  53.    8 - do not load optional kerberos dlls
  54.   16 - do not load optional zmodem dlls
  55.   32 - use stdin for input instead of the console
  56.   64 - use stdout for output instead of the console
  57.  
  58. : 3.  The CPU requirements are also high:  during file transfer from 
  59. : C-Kermit to Kermit 95, taskmgr reports k95 as using 95-99% of available 
  60. : CPU.  Am I doing something wrong?  By contrast, the C-Kermit cpu use is 
  61. : negligible.  One thing that's unusual in my setup:  the serial port is 
  62. : actually a USB-to-serial bridge.
  63. :
  64. Who knows.  Kermit 95 is all threads and semaphores, there are no busy
  65. loops.  It is easy on most CPUs, but every Windows box is different and
  66. who knows what is lurking behind the windows.
  67.  
  68. : In general though Kermit 95 is working out well here.  I wish we had a 
  69. : few more places to deploy it.  :)
  70. :
  71. Thanks :-)
  72.  
  73. - Frank